/////////////////////////////////////////////////////////////////////////:
gameplay:

try to get to the exit and collecting all candy without dying
(at the moment the level does not reset so when you die you need to close and reopen the game)

/////////////////////////////////////////////////////////////////////////:
controls:

arrow keys to move
thats all

/////////////////////////////////////////////////////////////////////////:
creating levels:

at start the "first.lvl" will be loaded, to change the level just edit this file
don't use tabs but only spaces in this file

/////////////////////////////////////////////////////////////////////////:
level elements:

  (space) : void
g : floor/ground
m : floor that moves up and down (timing is needed)
v : floor that will collapse after its walked over once
~ : water, same effect as the void
w : walls
h : hidding spot
e : an exit (the final goal in the game)
b : bombs, boom
c : candy (if you add these in the level, then you have to get them all before you can finish)
p : player spawn pos

1 directional enemys:
(these enemys will only move in 1 direction and turn 180 when they come accros an obstacle)
	2 : down to up enemy
	4 : left to right enemy
	6 : right to left enemy
	8 : up to down enemy

rotating enemys:
(these enemys will turn 90 CW or CCW when they come accros an obstacle)
CW:
	s : starting down enemy
	q : starting left enemy
	z : starting up enemy
	d : starting right enemy
CCW:
	k : starting down enemy
	j : starting left enemy
	l : starting right enemy
	i : starting up enemy

